home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASME's Mechanical Engine…ing Toolkit 1997 December
/
ASME's Mechanical Engineering Toolkit 1997 December.iso
/
main_frm
/
vi.zoo
/
makefile.usg
< prev
next >
Wrap
Makefile
|
1988-06-07
|
346b
|
23 lines
#
# Makefile for UNIX (System V)
#
LIBS = ../regexp/regexp.a
LDFLAGS=
CFLAGS = -I../regexp -O
MACH= unix.o
OBJ= main.o edit.o linefunc.o normal.o cmdline.o hexchars.o \
misccmds.o help.o ptrfunc.o search.o alloc.o \
mark.o screen.o fileio.o param.o $(MACH)
all : stevie
stevie : $(OBJ)
$(CC) $(OBJ) $(LIBS) -o stevie
clean :
rm $(OBJ)